home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / ANTENNA / YAGIU112 / U_INPUT.C < prev    next >
C/C++ Source or Header  |  1995-08-07  |  1KB  |  25 lines

  1. #include <stdio.h>
  2. #include "yagi.h"
  3.  
  4. void usage_input(char *exefile)
  5. {
  6.  
  7.     fprintf(stderr,"\nYagiUda antenna analysis programs, version %.2lf\n", version());
  8.     fprintf(stderr,"Written by David Kirkby BSc MSc G8WRB (email:davek@medphys.ucl.ac.uk)\n");
  9.     fprintf(stderr, "\nUSAGE: %s  [-h] \n\n", exefile);
  10.  
  11.     fprintf(stderr, "Where the only option is:\n");
  12.     fprintf(stderr, "   -h     Print this help screen\n\n\n");
  13.  
  14.     fprintf(stderr,"'input' is an interactive program, that asks the user for formation  about  \n");
  15.     fprintf(stderr,"a  Yagi  design,  such as position of elements, spacing between elements,\n");
  16.     fprintf(stderr,"frequency span of interest and a  filename to  save the data to. It then \n");
  17.     fprintf(stderr,"writes this information into an ASCII file, which can be read by 'yagi' or \n");
  18.     fprintf(stderr,"'optimise'. The file is  ASCII  and  it's format  is  easily  understood\n");
  19.     fprintf(stderr,"by inspection (there are comments printed in it), so it can if necessary\n");
  20.     fprintf(stderr,"be edited manually. After running 'input' and specifying a filename \n");
  21.     fprintf(stderr,"(for example 144e10) you should then type 'yagi 144e10' then 'output 144e10'\n");
  22.     fprintf(stderr,"and then and optionally 'optimise 144e10'.\n");
  23. }
  24.  
  25.